home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 539 / 539.xpi / content / measureit / about.xul next >
Extensible Markup Language  |  2010-01-23  |  1KB  |  37 lines

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  3. <window class="dialog"
  4.         title="MeasureIt - About"
  5.         orient="vertical"
  6.         autostretch="always"
  7.         onload="sizeToContent()"
  8.         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  9.  
  10. <!-- Original template by Jed Brown -->
  11.  
  12. <groupbox align="center" orient="horizontal">
  13. <vbox>
  14.   <text value="MeasureIt" style="font-weight: bold; font-size: x-large;"/>
  15.   <text value="ver. 0.3.92"/>
  16.   <separator class="thin"/>
  17.   <text value="Created By:" style="font-weight: bold;"/>
  18.   <text value="Kevin Freitas" class="url"
  19.         onclick="window.open('http://www.kevinfreitas.net/extensions/'); window.close();"/>
  20.   <separator class="thin"/>
  21.     <text value="Home Page:" style="font-weight: bold;"/>
  22.     <text value="www.kevinfreitas.net/extensions/"
  23.           class="url"
  24.         onclick="window.open('http://www.kevinfreitas.net/extensions/'); window.close();"/>
  25.   <separator class="thin"/>
  26. </vbox>
  27. <spring flex="1"/>
  28. <image src="chrome://measureit/skin/measureitb.png"/>
  29. </groupbox>
  30.  
  31.   <hbox>
  32.   <spacer flex="1"/>
  33.    <button label="Close" oncommand="window.close();"/>
  34.   </hbox>
  35.  
  36. </window>
  37.